home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / overlay / ovl301 / bnest2.bas < prev    next >
Encoding:
BASIC Source File  |  1988-03-09  |  99 b   |  7 lines

  1. sub nest2(i) static
  2.     print:print"in nest2";i;
  3.     for j=0 to 1
  4.         call nest3(j)
  5.     next j
  6. end sub
  7.